home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / libraw1394-11 / README.Debian < prev   
Text File  |  2009-07-27  |  1KB  |  34 lines

  1. libraw1394 for Debian
  2. ---------------------
  3.  
  4. Before all, you must verify if your actual linux kernel is built with
  5. ieee1394 and raw1394 support. Generaly, if you use a debian linux kernel
  6. package, it is the case, but you can know that with this command:
  7.         grep IEEE1394 /boot/config-`uname -r`
  8.  
  9. If theses modules are in you kernel, you may see theses lines:
  10.     CONFIG_IEEE1394=y
  11.         CONFIG_IEEE1394_RAWIO=m or CONFIG_IEEE1394_RAWIO=y
  12.  
  13. When you have CONFIG_IEEE1394_RAWIO=y, you have to do nothing.
  14. If you have CONFIG_IEEE1394_RAWIO=m, you must load the module.
  15. You can do that with this command (executed as the root user):
  16.     modprobe raw1394
  17.  
  18. The device file /dev/raw1394 will be created for libraw1394.  This library
  19. is used by applications to access FireWire devices.
  20. The default access permissions allows only users in the "disk" group.
  21. This restrictive setting was chosen since raw1394 allows almost full
  22. access to the FireWire bus and all connected devices are accessible, which
  23. may include hard disks. You can add your user in the "disk" group with this 
  24. command:
  25.       sudo adduser <user> disk
  26.  
  27. If you don't intend to connect sensitive devices and e.g. only want to get
  28. video streams out of a camera, you can relax the permissions.  If you
  29. don't have malicious users on your system, you can allow access for all
  30. users with this command:
  31.       sudo chmod 666 /dev/raw1394
  32.  
  33.  -- Ludovic RESLINGER <lr@cuivres.net>, Sun, 10 Sep 2006 16:08:19 +0200
  34.